输入一个整数n(1输出n个6例如 输入4输出6666
#include <stdio.h> int main(){ int a; scanf("%d",&a); for(int i=0;i<a;i++){ printf("6"); } //手机写的代码,见谅 return 0; }