题解 2998: 电影票

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

电影票(小白版)

摘要:解题思路:注意事项:写的那么好,不来个五星?参考代码:#include<stdio.h>int main(){    int a,b;    scanf("%d",&a);    b=a*10;   ……

编写题解 2998: 电影票

摘要:解题思路:注意事项:参考代码:    int a;     scanf("%d",&a);     printf("%d %d",a,a*10);……

2998: 电影票

摘要:##2998: 电影票 ```c #include int main() { int n; scanf("%d",&n); printf("%d %d",n,10*n); re……

电影票(c语言)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int x;    scanf("%d",&x);    printf("%d %d",x,10*x); ……

编写题解 2998: 电影票

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a,b;    while(~scanf("%d%d", &a, &b))printf("%d\n……

电影票给个好评

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int a;    cin>>a;    cout<<a<<" ……

蓝桥杯电影票

摘要:解题思路:直接定义人数,然后扩大十倍输出注意事项:参考代码:#include <stdio.h>int main(void) {    int x;    scanf("%d", &x);    pr……