我有一个问题:我应该构建一个程序,当我输入一个小于 100 的整数时,所有小于该整数并包含数字“3”的数字都会出现在屏幕上(等等,如果我输入 14,数字“3, 13” 应该出现)。
但是,我的代码有问题,请帮助!谢谢!
编码:
#include <stdio.h>
int main(int argc, const char * argv [])
{
int wholenumber;
printf("百以内の整数を入力してください\n");
scanf_s("%d", &wholenumber);
while(0 <wholenumber)
{
wholenumber--;
while(0 < wholenumber){
wholenumber = 3 %10;
wholenumber = 3 /10;
if (wholenumber == 3);
{printf("%3d",wholenumber);}
}
}
return 0;
}