Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,895 questions

51,826 answers

573 users

How to use Scanf to store numbers from string in int variables with Go

2 Answers

0 votes
package main
  
import (
    "fmt"     
)
  
func main(){    
    var X int
    var Y int
  
    fmt.Printf("X: %d, Y: %d\n", X, Y)
  
    fmt.Sscan("30 8731", &X, &Y)
    fmt.Printf("X: %d, Y: %d", X, Y)
}
   

   
/*
run:
   
X: 0, Y: 0
X: 30, Y: 8731
 
*/

 



answered Aug 9, 2020 by avibootz
edited Aug 9, 2020 by avibootz
0 votes
package main
 
import (
    "fmt"      
)
 
func main(){    
    var X int
    var Y int
 
    fmt.Printf("X: %d, Y: %d\n", X, Y)
 
    fmt.Sscanf("(948, 12)", "(%d, %d)", &X, &Y)
	
    fmt.Printf("X: %d, Y: %d", X, Y)
}
  
  
/*
run:
  
X: 0, Y: 0
X: 948, Y: 12

*/

 



answered Aug 9, 2020 by avibootz

Related questions

1 answer 173 views
1 answer 84 views
1 answer 152 views
152 views asked Feb 20, 2020 by avibootz
...