1 条题解

  • 0
    @ 2024-12-24 9:14:31

    C++ :

    #include<bits/stdc++.h>
    using namespace std;
    string a,b;
    int main(){
    	cin>>a;
    	if(a=="red"){
    		cout<<"stop!";
    	}
    	if(a=="yellow"){
    		cout<<"stop!";
    	}
    	if(a=="green"){
    		cout<<"go!";
    	}
    	return 0;
    }
    

    Python :

    # coding=utf-8
    x=input()
    a='stop!'
    b='go!'
    if x=="red":
        print(a)
    if x=="yellow":
        print(a)
    if x=="green":
        print(b)
    
    • 1

    信息

    ID
    527
    时间
    1000ms
    内存
    128MiB
    难度
    (无)
    标签
    (无)
    递交数
    0
    已通过
    0
    上传者