接上回经典打表。。。
虽然做人要脚踏实地,不过这种写法当然只是开玩笑的啦,谁会那么傻(除了我),用for循环就能解决了
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b,c;
scanf("%d", &a);
for(b=0;b<=9;b++)
{
printf("N[%d] = %d\n",b,a);
a=a*2;
}
}
那么看完了,我分享一下这道题的链接:https://www.acwing.com/problem/content/740/